Dynomotion

Group: DynoMotion Message: 6264 From: morgtod Date: 12/12/2012
Subject: Jog speeds
I am looking for a way to control jogging speeds in KmotionCNC. My fast jog is 200IPM, slow jog defaults to 100 IPM. WAY too fast for edge finding tasks. Some of my other machines have a selector for the directional jog buttons, .001, .010, .100, feed, rapid. Is there a way to accomplish this in KmotionCNC?
Group: DynoMotion Message: 6265 From: Tom Kerekes Date: 12/12/2012
Subject: Re: Jog speeds
H Todd,

I assume you realize that you can do incremental steps of various sizes that you specify in the Tool Setup.

But to change the continuous jog rates to be different ratios and so forth would require recompiling KMotionCNC.

Another Option is to use an external MPG.  The example MPGSmooth.c expects a selector for axis and step size (rate).

Regards
TK

Group: DynoMotion Message: 6266 From: morgtod Date: 12/12/2012
Subject: Re: Jog speeds
Tom,

I use the various size steps and it helps, but I am just looking for a way to reduce the number of directional buttons on my simplified touchscreen. Is there a way to adjust jog button speeds using a variable pot on an adc?

Todd


--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> H Todd,
>
> I assume you realize that you can do incremental steps of various sizes that you specify in the Tool Setup.
>
>
> But to change the continuous jog rates to be different ratios and so forth would require recompiling KMotionCNC.
>
> Another Option is to use an external MPG.  The example MPGSmooth.c expects a selector for axis and step size (rate).
>
> Regards
> TK
>
>
>
> ________________________________
> From: morgtod <todmorg@...>
> To: DynoMotion@yahoogroups.com
> Sent: Wednesday, December 12, 2012 1:50 PM
> Subject: [DynoMotion] Jog speeds
>
>
>  
> I am looking for a way to control jogging speeds in KmotionCNC. My fast jog is 200IPM, slow jog defaults to 100 IPM. WAY too fast for edge finding tasks. Some of my other machines have a selector for the directional jog buttons, .001, .010, .100, feed, rapid. Is there a way to accomplish this in KmotionCNC?
>
Group: DynoMotion Message: 6269 From: Tom Kerekes Date: 12/12/2012
Subject: Re: Jog speeds
Hi Todd,

Are you capable of modifying/compiling KMotionCNC?  If so, the Kanalog ADC readings are already available in the PC as part of the Uploaded Global Status record.

Every Jog Button (CMotionButton object) has a "mag" value that can be changed with an Init function call to set the magnitude of the speed.

    void CMotionButton::Init(CKMotionCNCDlg *pDlg, int axis, int dir, double mag, bool StepMode)

For example:

        m_Zminus.Init        (this, 0,-1,0.5,false);

where 0.5 causes the button to work at half of full Jog speed

The buttons are currently only initialized once, but I don't see why you couldn't call Init to change the speed whenever you wish.

HTH
Regards
TK